home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat1 / if.1 < prev    next >
Text File  |  1999-09-16  |  775b  |  67 lines

  1.  
  2.  
  3.  
  4. if(1)                          Scilab Function                          if(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   if then else - conditional execution
  13.  
  14. DESCRIPTION
  15.   Conditional execution; the syntax is the following :
  16.   if boolean then instructions,
  17.   elseif expri then instructions,
  18.     ....
  19.   [else instructions],
  20.   end
  21.  
  22.   -    The only constraint is that each then keyword must be on the same line
  23.        line as its corresponding if or elseif keyword.
  24.  
  25.   -    The keyword then can be replaced by a carriage return or a comma.
  26.  
  27. EXAMPLE
  28.      i=2
  29.      for j = 1:3,
  30.         if i == j then
  31.           a(i,j) = 2;
  32.         elseif abs(i-j) == 1 then
  33.           a(i,j) = -1;
  34.         else a(i,j) = 0;
  35.         end,
  36.      end
  37.  
  38. SEE ALSO
  39.   while, select, boolean, end, then, else
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.